home *** CD-ROM | disk | FTP | other *** search
/ Softwarová Záchrana 3 / Softwarova-zachrana-3.bin / Xteq X-Setup / xqdcXSP-Setup-EN.exe / {app} / plugins / XQ Yahoo Messenger 4.xpl < prev    next >
Text File  |  2001-11-27  |  2KB  |  40 lines

  1. "FILE"="Xteq Systems X-Setup Plugin 6.0"
  2. "TYPE"="1"
  3. "COUNT"="2"
  4. "UIPATH"="Internet\Instant Messaging\Yahoo Messenger"
  5. "NAME"="Window Title"
  6. "VERSION"="1.22"
  7. "LANGUAGE"="VBScript"
  8. "TEXT 1"="Main Window"
  9. "TEXT 2"="IM Windows"
  10. "DESCRIPTION 1"="You can change the title of the Yahoo! Messenger windows here."
  11. "DESCRIPTION 2"="The main window contains your friend list, and the IM window is what appears while you have a conversation."
  12. "DESCRIPTION 3"="NOTE #1: If you have Yahoo! Messenger open at the moment, you will need to close it so that the changes can take effect."
  13. "DESCRIPTION 4"="NOTE #2: IM Windows is ignored by Yahoo! Messenger 3.5x, and both options are ignored under Yahoo! Messenger 4.x"
  14. "DESCRIPTION 5"="Yahoo! Messenger may be obtained at http://messenger.yahoo.com/."
  15. "AUTHOR"="Xteq Systems (Neil R. Turner)"
  16. "CONTACTURL"="http://www.xteq.com/"
  17. "COPYRIGHT"="Copyright ⌐ Xteq Systems - All Rights Reserved"
  18. "COMMENT 1"="Fed up with Yahoo!? Try http://dmoz.org/."
  19.  
  20. sP="HKCR\TypeLib\{F0012D80-989C-11D3-B7C5-0090271D5CA7}\3.0\HELPDIR\@"
  21.  
  22. Sub Plugin_Initialize
  23.  s=RegReadValue(sP)
  24.  t=IniReadValue(s & "\cobrand.ini","APP TITLE","Caption")
  25.  Call SetUIElement(1,t)
  26.  t=IniReadValue(s & "\cobrand.ini","IM TITLE","Caption")
  27.  Call SetUIElement(2,t)
  28. End Sub
  29.  
  30. Sub Plugin_Apply(ElementIndex,ElementSubIndex)
  31.  t=GetUIElement(1)
  32.  s=RegReadValue(sP)
  33.  Call IniWriteValue(s & "\cobrand.ini","APP TITLE","Caption",t)
  34.  t=GetUIElement(2)
  35.  Call IniWriteValue(s & "\cobrand.ini","IM TITLE","Caption",t)
  36. End Sub
  37.  
  38. Sub Plugin_Terminate 
  39. End Sub
  40.